-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
サインアップ機能 #1
base: main
Are you sure you want to change the base?
サインアップ機能 #1
Conversation
black(フォーマッタ)のチェックに失敗しました。CI実行のログを確認して修正し,再度コミット・プッシュしてください。 |
black(フォーマッタ)のチェックに失敗しました。CI実行のログを確認して修正し,再度コミット・プッシュしてください。 |
Django Unit Testが失敗しました。実行ログを確認して修正し,再度コミット・プッシュしてください。 |
black(フォーマッタ)のチェックに失敗しました。CI実行のログを確認して修正し,再度コミット・プッシュしてください。 |
templates/base.html
Outdated
|
||
</body> | ||
</html> | ||
<<!DOCTYPE html> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<が1つ多くついているので修正お願いします。
templates/accounts/signup.html
Outdated
|
||
{% block content %} | ||
<form method="post"> | ||
{{ form.as_p }} ← formにはSignupFormのインスタンスが入っている。as_pとすることで、各input要素がpタグで囲まれた状態で表示される。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
←formなどの部分はアプリとは関係ないと思うのでコメントアウトした方がいいと思います
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.DS_Storeが差分ファイルに入ってしまっています
.gitignoreの使い方を確認し、.DS_Storeが追跡する差分に入らないように、追記をするといいと思います!
参考📚
@@ -1 +1,6 @@ | |||
# from django.contrib import admin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
要らなそうなコメントアウト?
細かいですが、不必要なコメントアウトは削除しちゃってください!
# from django.test import TestCase | ||
|
||
|
||
# class TestSignupView(TestCase): | ||
# def test_success_get(self): | ||
# def test_success_get(self):✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
なるほど、一つ一つチェックしながらテスト書いていたんですね!
漏れなく実装できていていいと思います!
このタイミングではなくてもいいかもしれないですが、コードは全て意味があり意味のないコードは一通り開発が終わってPR出す時には含めないようにするのがいいと思うので、
必要なくなったら削除しちゃってくださいね!
# from .models import Like, Tweet | ||
|
||
|
||
class TestHomeView(TestCase): # 不安 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
不安のコメントが笑
不安ですよね、でもよく書けていると思います!
理解が不安だったり、テキストで解決しないなと思う時は、自分含め修了生どなたでも画面共有等しながらアドバイスもらえるかと思うので、
アポ取ってみてくださいね!
自分もオフィスに行って見てもらったりしていたので!
ここも一応!不要なコメントは削除お願いします!
|
||
{% block content %} | ||
<form method="post"> | ||
{{ form.as_p }} # formにはSignupFormのインスタンスが入っている。as_pとすることで、各input要素がpタグで囲まれた状態で表示される。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これとかもrunserverしたときに画面見てもらえればわかるのですが、
サイトに表示されてしまっているので、削除しちゃった方がいいかと思います!
PR作成お疲れ様でした、いい感じです! |
受講生の確認事項
1次レビュアーの確認事項